var testing.matchList
9 uses
testing (current package)
testing.go#L388: matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
testing.go#L417: matchList *string
testing.go#L1683: if len(*matchList) != 0 {
testing.go#L1769: if _, err := matchString(*matchList, "non-empty"); err != nil {
testing.go#L1770: fmt.Fprintf(os.Stderr, "testing: invalid regexp in -test.list (%q): %s\n", *matchList, err)
testing.go#L1775: if ok, _ := matchString(*matchList, test.Name); ok {
testing.go#L1780: if ok, _ := matchString(*matchList, bench.Name); ok {
testing.go#L1785: if ok, _ := matchString(*matchList, fuzzTarget.Name); ok {
testing.go#L1790: if ok, _ := matchString(*matchList, example.Name); ok {